/* =====================================================
   LEADERSHIP SECTION
===================================================== */

.leadership-section {
    width: 100%;
    padding: 0  120px;
    background: #ffffff;
    overflow: hidden;
}


/* =====================================================
   TOP CONTENT
===================================================== */

.leadership-container {
    width: calc(100% - 80px);
    max-width: 1500px;
   
}

.leadership-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
    margin-bottom: 45px;
}


/* SMALL TITLE */

.leadership-small-title {
    margin-bottom: 14px;

    font-size: 18px;
    line-height: 1;

    font-weight: 700;

    letter-spacing: 1.4px;

    text-transform: uppercase;

    color: #111111;
}


/* MAIN TITLE */

.leadership-title {
    max-width: 500px;

    margin: 0;

    font-size: 45px;
    line-height: 1.18;

    font-weight: 600;

    color: #102b6a;

    text-decoration: none;

    text-decoration-thickness: 2px;

    text-underline-offset: 4px;
}

.leadership-highlight {
    display: inline;

    color: #ff963f;
}


/* DESCRIPTION */

.leadership-description {
    max-width: 800px;
margin-left: 200px;
    padding-top: 27px;
}

.leadership-description p {
    margin: 0;
  font-family: sans-serif;
    font-size: 18px;
    line-height: 1.65;

    color: #111111;
}


/* =====================================================
   SLIDER
===================================================== */

.leadership-slider {
    width: 100%;
}

.leadership-track {
    display: flex;

    align-items: stretch;

    gap: 16px;

    overflow-x: auto;

    scroll-behavior: smooth;

    scrollbar-width: none;

    padding-left: 40px;
    padding-right: 40px;

    scroll-snap-type: x proximity;
}

.leadership-track::-webkit-scrollbar {
    display: none;
}


/* =====================================================
   CARD
===================================================== */

.leadership-card {
    flex: 0 0 320px;

    background: #102b6a;

    overflow: hidden;

    scroll-snap-align: start;
}


/* IMAGE */

.leadership-image {
    width: 100%;

    height: 390px;

    overflow: hidden;

    background: #eeeeee;
}

.leadership-image img {
    width: 350px;

    height: 410px;

    display: block;

    object-fit: cover;

    object-position: center top;

    transition: transform 0.5s ease;
}

.leadership-card:hover .leadership-image img {
    transform: scale(1.04);
}


/* =====================================================
   CARD FOOTER
===================================================== */

.leadership-card-footer {
    min-height: 72px;

    padding: 12px 14px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 15px;

    background: #102b6a;
}


/* PERSON INFO */

.leadership-person-info {
    min-width: 0;
}

.leadership-person-info h3 {
    margin: 0 0 5px;

    font-size: 20px;
font-family: poppins;
    line-height: 1.2;

    font-weight: 600;

    color: #ffffff;
}

.leadership-person-info p {
    margin: 0;

    font-size: 14px;
font-family: sans-serif;
    line-height: 1.3;

    font-weight: 600;

    text-transform: uppercase;

    color: #ffffff;
}


/* =====================================================
   CARD ARROW
===================================================== */

.leadership-card-arrow {
    width: 31px;

    height: 31px;

    min-width: 31px;

    border: 1px dashed rgba(255, 255, 255, 0.55);

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    text-decoration: none;

    transition:
        background-color 0.3s ease,
        border-color 0.3s ease;
}

.leadership-card-arrow svg {
    width: 14px;

    height: 14px;

    fill: none;
}

.leadership-card-arrow path {
    stroke: #ffffff;

    stroke-width: 1.5;

    stroke-linecap: round;

    stroke-linejoin: round;
}

a.leadership-card-arrow:hover {
    background: #ff963f;

    border-color: #ff963f;
}


/* =====================================================
   NAVIGATION
===================================================== */

.leadership-navigation {
    width: calc(100% - 80px);

    max-width: 1500px;

    margin: 28px auto 0;

    display: flex;

    align-items: center;

    gap: 10px;
}

.leadership-nav {
    width: 42px;

    height: 42px;

    padding: 0;

    border: none;

    border-radius: 50%;

    background: #ff963f;

    display: flex;

    align-items: center;

    justify-content: center;

    cursor: pointer;

    transition:
        transform 0.25s ease,
        background-color 0.25s ease;
}

.leadership-nav:hover {
    transform: translateY(-2px);

    background: #102b6a;
}

.leadership-nav svg {
    width: 17px;

    height: 17px;

    fill: none;
}

.leadership-nav path {
    stroke: #102b6a;

    stroke-width: 1.7;

    stroke-linecap: round;

    stroke-linejoin: round;
}

.leadership-nav:hover path {
    stroke: #ffffff;
}


/* =====================================================
   LARGE DESKTOP
===================================================== */

@media (min-width: 1600px) {

    .leadership-card {
        flex-basis: 330px;
    }

    .leadership-image {
        height: 400px;
    }

}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 991px) {

    .leadership-container {
        width: calc(100% - 48px);
    }

    .leadership-header {
        grid-template-columns: 1fr;

        gap: 20px;

        margin-bottom: 35px;
    }

    .leadership-description {
        max-width: 650px;

        padding-top: 0;
    }

    .leadership-track {
        padding-left: 24px;

        padding-right: 24px;
    }

    .leadership-navigation {
        width: calc(100% - 48px);
    }

}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 600px) {

    .leadership-section {
        padding: 45px 0 35px;
    }

    .leadership-container {
        width: calc(100% - 32px);
    }

    .leadership-small-title {
        font-size: 10px;
    }

    .leadership-title {
        font-size: 30px;
    }

    .leadership-description p {
        font-size: 13px;
    }

    .leadership-track {
        gap: 12px;

        padding-left: 16px;

        padding-right: 16px;
    }

    .leadership-card {
        flex-basis: 82vw;
    }

    .leadership-image {
        height: 360px;
    }

    .leadership-navigation {
        width: calc(100% - 32px);

        margin-top: 20px;
    }

    .leadership-nav {
        width: 40px;

        height: 40px;
    }

}